----------------------------------------------------
Changelog from version 1.1.2 to 1.2.0
----------------------------------------------------

--------------------------
New Files
--------------------------

jquery.flow.1.2.auto.js - Upload to "js" directory
video-file.php - Upload to "magnifizine" directory

--------------------------
Reupload Files
--------------------------

video.php - Upload to "magnifizine" directory
jquery.prettyPhoto.js - Upload to "js" directory
prettyPhoto.css - Upload to "css" directory


--------------------------
Remove Files
--------------------------

jquery.flow.1.2.js
video.php


--------------------------
header.php
--------------------------

** Find around lines 27-29: **

<?php if($theme_colour == "Blue") { ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/style-blue.css" type="text/css" media="screen" />
<?php } elseif($theme_colour == "Red") { ?>

** Replace with: **

<?php if($theme_colour == "Red") { ?>


** Find around line 38: **

<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/style-yellow.css" type="text/css" media="screen" />

** Replace with: **

<?php } else { ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/style-blue.css" type="text/css" media="screen" />


** Find on lines 107-108: **

<a href="javascript:featuredcontentslider.playpause('slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } else { ?>small<?php } ?>')"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/controls-pause.png" class="pngfix" onmouseover="this.src='<?php bloginfo('stylesheet_directory'); ?>/images/controls-pause-hover.png'" onmouseout="this.src='<?php bloginfo('stylesheet_directory'); ?>/images/controls-pause.png'" alt="" /></a>
<a href="javascript:featuredcontentslider.playpause('slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } else { ?>small<?php } ?>')"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/controls-resume.png" class="pngfix" onmouseover="this.src='<?php bloginfo('stylesheet_directory'); ?>/images/controls-resume-hover.png'" onmouseout="this.src='<?php bloginfo('stylesheet_directory'); ?>/images/controls-resume.png'" alt="" /></a>

** Replace with: **

<a href="javascript:featuredcontentslider.playpause('slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } elseif($theme_slider_size == "Medium") { ?>medium<?php } else { ?>small<?php } ?>')"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/controls-pause.png" class="pngfix" onmouseover="this.src='<?php bloginfo('stylesheet_directory'); ?>/images/controls-pause-hover.png'" onmouseout="this.src='<?php bloginfo('stylesheet_directory'); ?>/images/controls-pause.png'" alt="" /></a>
<a href="javascript:featuredcontentslider.playpause('slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } elseif($theme_slider_size == "Medium") { ?>medium<?php } else { ?>small<?php } ?>')"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/controls-resume.png" class="pngfix" onmouseover="this.src='<?php bloginfo('stylesheet_directory'); ?>/images/controls-resume-hover.png'" onmouseout="this.src='<?php bloginfo('stylesheet_directory'); ?>/images/controls-resume.png'" alt="" /></a>
				

** Find around line 118: **

<div id="slider-container-<?php if($theme_slider_size == "Large") { ?>large<?php } else { ?>small<?php } ?>">

** Replace with: **

<div id="slider-container-<?php if($theme_slider_size == "Large") { ?>large<?php } elseif($theme_slider_size == "Medium") { ?>medium<?php } else { ?>small<?php } ?>">


** Find around line 121: **

<div id="mySlides-<?php if($theme_slider_size == "Large") { ?>large<?php } else { ?>small<?php } ?>">

** Replace with: **

<div id="mySlides-<?php if($theme_slider_size == "Large") { ?>large<?php } elseif($theme_slider_size == "Medium") { ?>medium<?php } else { ?>small<?php } ?>">
		

** Find around with 123: **

<div id="slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } else { ?>small<?php } ?>">

** Replace with: **

<div id="slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } elseif($theme_slider_size == "Medium") { ?>medium<?php } else { ?>small<?php } ?>">


** Find around line 136: **

<?php the_post_thumbnail(array(980,9999), array('title' => '')); ?>

** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>
	<?php the_post_thumbnail(array(980,9999), array('title' => '')); ?>
<?php } ?>	
	
	
** Find around line 144: **

<?php }} elseif(get_post_meta($post->ID, 'slider_image', true)) { ?>

** Replace with: **

<?php }} elseif(get_post_meta($post->ID, 'slider_image', true) && !get_post_meta($post->ID, 'slider_video', true)) { ?>


** Find around line 146: **

<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />

** Add below: **

<?php } elseif(get_post_meta($post->ID, 'slider_video', true)) { ?>
	
	<?php require('video.php'); ?>


** Find around line 152: **

<div class="pop_box_upper_<?php if($theme_slider_size == "Large") { ?>large<?php } else { ?>small<?php } ?>">

** Replace with: **

<div class="pop_box_upper_<?php if($theme_slider_size == "Large") { ?>large<?php } elseif($theme_slider_size == "Medium") { ?>medium<?php } else { ?>small<?php } ?>">


** Find around line 173: **

<div id="paginate-slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } else { ?>small<?php } ?>">

** Replace with: **

<div id="paginate-slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } elseif($theme_slider_size == "Medium") { ?>medium<?php } else { ?>small<?php } ?>">


** Find around lines 185-189: **

<?php if(has_post_thumbnail()) { ?>
	<?php the_post_thumbnail(array(123,9999), array('title' => '')); ?>
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="" />
<?php } ?>

** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>
	<?php if(has_post_thumbnail()) { ?>
		<?php the_post_thumbnail(array(123,9999), array('title' => '')); ?>
	<?php } else { ?>
		<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="" />
	<?php } ?>	
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="" />	
<?php } ?>

--------------------------
style.css
--------------------------

** Find around line 3: **

Version: 1.1.2

** Replace with: **

Version: 1.2.0


** Find around line 530: **

height: 250px;

** Replace with: **

min-height: 225px;
max-height: 250px;


** Find around lines 634-639: **

#slider-container-outer-small {
width: 980px;
height: 443px;
background: url(images/slider-bg.jpg) no-repeat;
position: relative;
}

** Replace with: **

#slider-container-medium {
float: left;
width: 980px;
height: 350px;
overflow: hidden;
background: #000000;
position: relative;
}


** Find around lines 640-641: **

#slider-container-small {
float: left;

** Add below: **

background: #000000;


** Find around line 649: **

#mySlides-large, #slider1-large {

** Add above: **

#slider-container-outer-small {
width: 980px;
height: 443px;
background: url(images/slider-bg.jpg) no-repeat;
position: relative;
}


** Find around line 655: **

#mySlides-small, #slider1-small {

** Add above: **

#mySlides-medium, #slider1-medium {
width: 980px;
height: 350px;
overflow: hidden;
position: relative;
}


** Find on line 666: **

#mySlides-small img, #slider1-small img {

** Add above: **

#mySlides-medium img, #slider1-medium img {
width: 980px;
height: 350px;
border: 0;
}


** Find around line 816-818: **

.pop_inner_upper {
padding: 10px 20px;
color: #ffffff;
}

** Replace with: **

.pop_box_upper_medium {
height:120px;
position:relative;
top:-475px;
width:100%;
z-index:500;
background: #000000;
border-bottom: 5px solid #334143;
filter: alpha(opacity=80);
-moz-opacity: 0.8;
-khtml-opacity: 0.8;
opacity: 0.8;


** Find around line 833: **

.pop_inner_upper h3 {

** Add above: **

.pop_inner_upper {
padding: 10px 20px;
color: #ffffff;
}


--------------------------
functions.php
--------------------------

** Find around line 168: **

"desc" => "Choose between the large (980x525) and small slider (780x418)",
        
** Replace with: **

"desc" => "Choose between the large (980x525), medium (980x350) and small slider (780x418)",


** Find around line 171: **

"options" => array('Large', 'Small'),

** Replace with: **

"options" => array('Large', 'Medium', 'Small'),


** Find around line 711: **

'thumbnail' => array( 'name' => 'thumbnail', 'title' => __('Thumbnail URL', 'hybrid'), 'desc' => '<strong>NOTE:</strong> If you are using WordPress 2.9 use the thumbnail upload feature to the right, otherwise enter your URL here (recommended size 122px x 100px).', 'type' => 'text' ),

** Add below: **

'slider_video' => array( 'name' => 'slider_video', 'title' => __('Slider Video URL', 'hybrid'), 'desc' => '<strong>NOTE:</strong> If you are using WordPress 2.9 enter your video URL in the Description text box in the image upload window', 'type' => 'text' ),


--------------------------
top-post.php
--------------------------

** Find around lines 3-8: **

<?php if(has_post_thumbnail()) { ?>
	<?php the_post_thumbnail(array(640,9999), array('title' => '')); ?>
<?php } else { ?>
	<img src="<?php
	echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>

** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>
	<?php if(has_post_thumbnail()) { ?>
		<?php the_post_thumbnail(array(640,9999), array('title' => '')); ?>
	<?php } else { ?>
		<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
	<?php } ?>
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>



--------------------------
footer.php
--------------------------

** Find around lines 42-44: **

<?php if ($theme_footer_content) { ?>
	<?php echo stripslashes($theme_footer_content); ?> <a href="#top"><img src="<?php bloginfo('stylesheet_directory') ?>/images/top.png"  class="pngfix" alt="" border="0" /></a>
<?php } ?>

** Replace with: **

<?php echo stripslashes($theme_footer_content); ?> <a href="#top"><img src="<?php bloginfo('stylesheet_directory') ?>/images/top.png"  class="pngfix" alt="" border="0" /></a>
		
		
** Find around lines 101-120: **

<script language="javascript" type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery.flow.1.2.js"></script>  
<script language="javascript" type="text/javascript">
var $s = jQuery.noConflict();
$s(document).ready(function(){
	$s("#myController").jFlow({
		<?php if($theme_slider_size == "Large") { ?>	
		slides: "#mySlides-large",
		width: "980px",
		height: "525px",
		<?php } else { ?>
		slides: "#mySlides-small",		
		width: "780px",
		height: "418px",
		<?php } ?>
		prev: ".jFlowPrev",
		next: ".jFlowNext",
		autoslide: <?php if($theme_disable_autoslide == "true") { ?>999999<?php } else { ?><?php echo $theme_main_slider_speed ?><?php } ?>
	});
});
</script>

** Replace with: **

<?php if($theme_slider_effect == "Sweep Across") { ?>	
	<script language="javascript" type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery.flow.1.2.auto.js"></script>  
	<script language="javascript" type="text/javascript">
	var $s = jQuery.noConflict();
	$s(document).ready(function(){
		$s("#myController").jFlow({
			<?php if($theme_slider_size == "Large") { ?>	
			slides: "#mySlides-large",
			width: "980px",
			height: "525px",
			<?php } elseif($theme_slider_size == "Medium") { ?>
			slides: "#mySlides-medium",		
			width: "980px",
			height: "350px",
			<?php } else { ?>
			slides: "#mySlides-small",		
			width: "780px",
			height: "418px",
			<?php } ?>
			duration: 600,
			prev: ".jFlowPrev",
			next: ".jFlowNext",
			auto: <?php if($theme_disable_autoslide == "false") { ?>true<?php } else { ?>false<?php } ?>,
			speed: <?php echo $theme_main_slider_speed ?>
		});
	});
	</script>
<?php } ?>	


** Find around line 135-136: **

function(){ $pb("div.pop_box_lower").animate({top:"0px"},{queue:false,duration:500});
	});

** Add below: **

<?php } elseif($theme_slider_size == "Medium") { ?>
	$pb("div#slider-container-medium").hover(function(){
	$pb(this).find("div.pop_box_upper_medium").animate({top:"-350px"},{queue:false,duration:500});},
	function(){ $pb("div.pop_box_upper_medium").animate({top:"-475px"},{queue:false,duration:500});
	});

	$pb("div#slider-container-medium").hover(function(){
	$pb(this).find("div.pop_box_lower").animate({top:"-100px"},{queue:false,duration:500});},
	function(){ $pb("div.pop_box_lower").animate({top:"0px"},{queue:false,duration:500});
	});
	
** Find around lines 180-208: **

<?php if($theme_slider_size == "Large") { ?>
	<script type="text/javascript">
	featuredcontentslider.init({
	id: "slider1-large", //id of main slider DIV
	contentsource: ["inline", ""], //Valid values: ["inline", ""] or ["ajax", "path_to_file"]
	toc: "markup", //Valid values: "#increment", "markup", ["label1", "label2", etc]
	nextprev: ["", ""], //labels for "prev" and "next" links. Set to "" to hide.
	revealtype: "click", //Behavior of pagination links to reveal the slides: "click" or "mouseover"
	enablefade: [true, 0.1], //[true/false, fadedegree]
	autorotate: [<?php if($theme_disable_autoslide == "true") { ?>false<?php } else { ?>true<?php } ?>, <?php echo($theme_main_slider_speed) ?>], //[true/false, pausetime]
	onChange: function(previndex, curindex){
	}
	})
	</script>
<?php } else { ?>
	<script type="text/javascript">
	featuredcontentslider.init({
	id: "slider1-small", //id of main slider DIV
	contentsource: ["inline", ""], //Valid values: ["inline", ""] or ["ajax", "path_to_file"]
	toc: "markup", //Valid values: "#increment", "markup", ["label1", "label2", etc]
	nextprev: ["", ""], //labels for "prev" and "next" links. Set to "" to hide.
	revealtype: "click", //Behavior of pagination links to reveal the slides: "click" or "mouseover"
	enablefade: [true, 0.1], //[true/false, fadedegree]
	autorotate: [<?php if($theme_disable_autoslide == "true") { ?>false<?php } else { ?>true<?php } ?>, <?php echo($theme_main_slider_speed) ?>], //[true/false, pausetime]
	onChange: function(previndex, curindex){
	}
	})
	</script>
<?php } ?>

** Replace with: **

<?php if($theme_slider_effect == "Transition") { ?>
	<script type="text/javascript">
	featuredcontentslider.init({
	id: "slider1-<?php if($theme_slider_size == "Large") { ?>large<?php } elseif($theme_slider_size == "Medium") { ?>medium<?php } else { ?>small<?php } ?>", //id of main slider DIV
	contentsource: ["inline", ""], //Valid values: ["inline", ""] or ["ajax", "path_to_file"]
	toc: "markup", //Valid values: "#increment", "markup", ["label1", "label2", etc]
	nextprev: ["", ""], //labels for "prev" and "next" links. Set to "" to hide.
	revealtype: "click", //Behavior of pagination links to reveal the slides: "click" or "mouseover"
	enablefade: [true, 0.1], //[true/false, fadedegree]
	autorotate: [<?php if($theme_disable_autoslide == "true") { ?>false<?php } else { ?>true<?php } ?>, <?php echo($theme_main_slider_speed) ?>], //[true/false, pausetime]
	onChange: function(previndex, curindex){
	}
	})
	</script>
<?php } ?>


--------------------------
template-portfolio.php
--------------------------

** Find around lines 51-59: **

<?php if(has_post_thumbnail()) { ?>
	<?php the_post_thumbnail(array(123,9999), array('title' => '')); ?>
<?php } else { ?>
	<?php $args = array('post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'orderby' => menu_order, 'post_mime_type' => 'image', 'post_parent' => $post->ID); 
	$attachments = get_children($args);
	foreach ($attachments as $attachment) { if($attachment->menu_order == 1) { ?>
		<img src="<?php echo wp_get_attachment_thumb_url($attachment->ID); ?>"  alt="" />
	<?php }} ?>
<?php } ?>		

** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>
	<?php if(has_post_thumbnail()) { ?>
		<?php the_post_thumbnail(array(123,9999), array('title' => '')); ?>
	<?php } else { ?>
		<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="" />	
	<?php } ?>	
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="" />	
<?php } ?>


** Find on lines 90: **

<a href="<?php if($attachment->post_content) { ?><?php echo $attachment->post_content ?>&image=<?php if(has_post_thumbnail()) { ?><?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array(980,9999),false,''); echo $src[0]; ?><?php } else { ?><?php echo wp_get_attachment_url($attachment->ID); ?><?php } ?>&width=780&height=418&autostart=<?php if($theme_lb_autostart == 'Yes') { ?>true<?php } elseif($theme_lb_autostart == 'No') { ?>false<?php } ?>&quality=<?php if($theme_lb_quality == 'High') { ?>true<?php } elseif($theme_lb_quality == 'Low') { ?>false<?php } ?>&overstretch=<?php if($theme_lb_vid_stretch == 'Fill') { ?>true<?php } elseif($theme_lb_vid_stretch == 'Fit') { ?>Fit<?php } ?>&showicons=<?php if($theme_lb_icons == 'Yes') { ?>true<?php } elseif($theme_lb_icons == 'No') { ?>false<?php } ?>&bufferlength=<?php echo($theme_lb_bufferlength) ?>&backcolor=0x000000&frontcolor=0xffffff&lightcolor=0xffffff&screencolor=0x000000&shownavigation=<?php if($theme_lb_controlbar == 'Show') { ?>true<?php } elseif($theme_lb_controlbar == 'Hide') { ?>false<?php } ?><?php } elseif(has_post_thumbnail()) { ?><?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array(980,9999),false,''); echo $src[0]; ?><?php } else { ?><?php echo wp_get_attachment_url($attachment->ID); ?><?php } ?>" rel="prettyPhoto[portimage<?php the_ID(); ?>]"><?php if(has_post_thumbnail()) { ?><?php the_post_thumbnail(array(560,9999), array('title' => '')); ?><?php } else { ?><img src="<?php echo wp_get_attachment_url($attachment->ID); ?>"  alt="" /><?php } ?></a>

** Replace with: **

<a href="
<?php if($attachment->post_content) { ?>						
	<?php echo $attachment->post_content ?>&image=<?php if(function_exists('add_theme_support')) { ?><?php if(has_post_thumbnail()) { ?><?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array(980,9999),false,''); echo $src[0]; ?><?php } else { ?><?php echo get_post_meta($post->ID, 'slider_image', true); ?><?php } ?><?php } else { ?><?php echo get_post_meta($post->ID, 'slider_image', true); ?><?php } ?>&width=780&height=418&autostart=<?php if($theme_lb_autostart == 'Yes') { ?>true<?php } elseif($theme_lb_autostart == 'No') { ?>false<?php } ?>&quality=<?php if($theme_lb_quality == 'High') { ?>true<?php } elseif($theme_lb_quality == 'Low') { ?>false<?php } ?>&overstretch=<?php if($theme_lb_vid_stretch == 'Fill') { ?>true<?php } elseif($theme_lb_vid_stretch == 'Fit') { ?>Fit<?php } ?>&showicons=<?php if($theme_lb_icons == 'Yes') { ?>true<?php } elseif($theme_lb_icons == 'No') { ?>false<?php } ?>&bufferlength=<?php echo($theme_lb_bufferlength) ?>&backcolor=0x000000&frontcolor=0xffffff&lightcolor=0xffffff&screencolor=0x000000&shownavigation=<?php if($theme_lb_controlbar == 'Show') { ?>true<?php } elseif($theme_lb_controlbar == 'Hide') { ?>false<?php } ?>
<?php } else { ?>							
	<?php if(function_exists('add_theme_support')) { ?>
		<?php if(has_post_thumbnail()) { ?><?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array(980,9999),false,''); echo $src[0]; ?><?php } else { ?><?php echo get_post_meta($post->ID, 'slider_image', true); ?><?php } ?>
	<?php } else { ?>
		<?php echo get_post_meta($post->ID, 'slider_image', true); ?>
	<?php } ?>
<?php } ?>
" rel="prettyPhoto[portimage<?php the_ID(); ?>]">
<?php if(function_exists('add_theme_support')) { ?>
<?php if(has_post_thumbnail()) { ?><?php the_post_thumbnail(array(560,9999), array('title' => '')); ?><?php } else { ?><img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" title="" /><?php } ?><?php } else { ?><img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" title="" /><?php } ?></a>
		
		
--------------------------
post-loop.php
--------------------------
		
** Find around lines 7-15: **

<?php if(has_post_thumbnail()) { ?>

	<?php the_post_thumbnail(array(125,9999), array('title' => '')); ?>

<?php } else { ?>

	<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="" />

<?php } ?>
						
** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>

	<?php if(has_post_thumbnail()) { ?>
		<?php the_post_thumbnail(array(125,9999), array('title' => '')); ?>
	<?php } else { ?>
		<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="" />
	<?php } ?>

<?php } else { ?>

	<img src="<?php echo get_post_meta($post->ID, 'thumbnail', true); ?>" alt="" />
			
<?php } ?>

--------------------------
template-blog.php
--------------------------

** Find around lines 21-26: **

<?php if(has_post_thumbnail()) { ?>
	<?php the_post_thumbnail(array(640,9999,true)); ?>
<?php } else { ?>
	<img src="<?php
	echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>

** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>
	<?php if(has_post_thumbnail()) { ?>
		<?php the_post_thumbnail(array(640,9999,true)); ?>
	<?php } else { ?>
		<img src="<?php
		echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
	<?php } ?>
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>


--------------------------
single.php
--------------------------

** Find around lines 19-23: **

<?php if(has_post_thumbnail()) { ?>
	<?php the_post_thumbnail(array(640,9999,true)); ?>
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>

** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>
	<?php if(has_post_thumbnail()) { ?>
		<?php the_post_thumbnail(array(640,9999), array('title' => '')); ?>
	<?php } else { ?>
		<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
	<?php } ?>
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>

--------------------------
theme-widgets.php
--------------------------

** Find around line 30: **

$r = new WP_Query(array('meta_key' => 'mini_slider', 'meta_value' => get_post_meta($post->ID, 'mini_slider', true), 'post_status' => 'publish', 'caller_get_posts' => 1)); if ($r->have_posts()) : ?>

** Replace with: **

$r = new WP_Query(array('posts_per_page' => -1, 'meta_key' => 'mini_slider', 'meta_value' => get_post_meta($post->ID, 'mini_slider', true), 'post_status' => 'publish', 'caller_get_posts' => 1)); if ($r->have_posts()) : ?>


** Find around lines 38-42: **

<?php if(has_post_thumbnail()) { ?>
	<?php the_post_thumbnail(array(280,9999), array('title' => '')); ?>				
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>

** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>
	<?php if(has_post_thumbnail()) { ?>
		<?php the_post_thumbnail(array(280,9999), array('title' => '')); ?>				
	<?php } else { ?>
		<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
	<?php } ?>
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>


** Find around lines 302-306: **

<?php if(has_post_thumbnail()) { ?>
	<?php the_post_thumbnail(array(280,9999), array('title' => '')); ?>				
<?php } else { ?>
	<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
<?php } ?>

** Replace with: **

<?php if(function_exists('add_theme_support')) { ?>
	<?php if(has_post_thumbnail()) { ?>
		<?php the_post_thumbnail(array(280,9999), array('title' => '')); ?>				
	<?php } else { ?>
		<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />
	<?php } ?>
<?php } else { ?>
		<img src="<?php echo get_post_meta($post->ID, 'slider_image', true); ?>" alt="" />					
<?php } ?>